aboutsummaryrefslogtreecommitdiffstats
path: root/mpv-nowayland [disowned]/PKGBUILD
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-07-29 22:00:37 +0200
committerMattias Andrée <maandree@kth.se>2021-07-29 22:00:37 +0200
commitcb48d6ebf6df5208779a1995ab62179938139cb4 (patch)
treefd7ecf738d672c01cb2f3a1e0462573f26a93dd0 /mpv-nowayland [disowned]/PKGBUILD
parentUpdate mongoclock (diff)
downloadaur-packages-cb48d6ebf6df5208779a1995ab62179938139cb4.tar.gz
aur-packages-cb48d6ebf6df5208779a1995ab62179938139cb4.tar.bz2
aur-packages-cb48d6ebf6df5208779a1995ab62179938139cb4.tar.xz
Remove old packages
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'mpv-nowayland [disowned]/PKGBUILD')
-rw-r--r--mpv-nowayland [disowned]/PKGBUILD60
1 files changed, 0 insertions, 60 deletions
diff --git a/mpv-nowayland [disowned]/PKGBUILD b/mpv-nowayland [disowned]/PKGBUILD
deleted file mode 100644
index 9fdaa26..0000000
--- a/mpv-nowayland [disowned]/PKGBUILD
+++ /dev/null
@@ -1,60 +0,0 @@
-# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
-# Maintainer of the mpv package: Christian Hesse <mail@eworm.de>
-# Contributor to the mpv package: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
-# Contributor to the mpv package: Eivind Uggedal <eivind@uggedal.com>
-
-_pkgname=mpv
-pkgname=mpv-nowayland
-epoch=1
-pkgver=0.22.0
-pkgrel=1
-_waf_version=1.8.12
-pkgdesc='A free, open source, and cross-platform media player'
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://mpv.io'
-depends=(
- 'ffmpeg' 'lcms2' 'libcdio-paranoia' 'libgl' 'enca' 'libxss'
- 'libxinerama' 'libxv' 'libxkbcommon' 'libva' 'libcaca'
- 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua52' 'libdvdnav'
- 'libxrandr' 'jack' 'smbclient' 'rubberband'
-)
-makedepends=('mesa' 'python-docutils' 'ladspa' 'hardening-wrapper')
-optdepends=('youtube-dl: for video-sharing websites playback')
-options=('!emptydirs' '!buildflags')
-conflicts=("$_pkgname")
-provides=("$_pkgname=$pkgver")
-source=("$_pkgname-$pkgver.tar.gz::https://github.com/mpv-player/$_pkgname/archive/v$pkgver.tar.gz"
- "http://www.freehackers.org/~tnagy/release/waf-${_waf_version}")
-sha256sums=('c0f9ac8f0e37a391d19007b333ef8787c2f45d75a0d4401c0098cde52c5082f6'
- '01bf2beab2106d1558800c8709bc2c8e496d3da4a2ca343fe091f22fca60c98b')
-
-prepare() {
- cd ${_pkgname}-${pkgver}
-
- install -m755 "${srcdir}"/waf-${_waf_version} waf
-}
-
-build() {
- cd ${_pkgname}-${pkgver}
-
- ./waf configure --prefix=/usr \
- --confdir=/etc/mpv \
- --enable-cdda \
- --enable-encoding \
- --enable-libmpv-shared \
- --enable-zsh-comp \
- --disable-wayland \
- --disable-gl-wayland
-
- ./waf build
-}
-
-package() {
- cd ${_pkgname}-${pkgver}
-
- ./waf install --destdir="$pkgdir"
-
- install -m644 DOCS/{encoding.rst,tech-overview.txt} \
- "$pkgdir"/usr/share/doc/mpv
-}